home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Columbia Kermit
/
kermit.zip
/
newsgroups
/
misc.20021006-20030409
/
000278_curtis.steward@goodrich.com_Mon Feb 10 16:27:27 EST 2003.msg
< prev
next >
Wrap
Text File
|
2020-01-01
|
3KB
|
84 lines
Article: 14072 of comp.protocols.kermit.misc
Path: newsmaster.cc.columbia.edu!panix!bloom-beacon.mit.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
From: curtis.steward@goodrich.com (Curtis Steward)
Newsgroups: comp.protocols.kermit.misc
Subject: SSL-Telnet waiting for WILL AUTHENTICATION subnegotiation
Date: 10 Feb 2003 13:07:08 -0800
Organization: http://groups.google.com/
Lines: 66
Message-ID: <f53f8c5c.0302101307.43a79f75@posting.google.com>
NNTP-Posting-Host: 207.180.255.121
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
X-Trace: posting.google.com 1044911228 2936 127.0.0.1 (10 Feb 2003 21:07:08 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: 10 Feb 2003 21:07:08 GMT
Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14072
I'm trying to get straight SSL authentication to work as described in:
http://www.columbia.edu/kermit/security80.html (compiled with
"linux+openssl" no flags). I understand that ~/.tlslogin will give me
a complete cert to userid map with the code as is.
After pouring over the doc I'm receiving the following:
c-kermit8.0
...
iksd <hostname>
...
TELNET RCVD DO NEW-ENVIRONMENT
TELNET RCVD SB AUTHENTICATION SEND SSL CLIENT_TO_SERVER|ONE_WAY IAC
SE
Loading RSA certificate into SSL
Enter pass phrase: <pass-phrase>
Authenticating with SSL
TELNET SENT SB AUTHENTICATION IS SSL CLIENT_TO_SERVER|ONE_WAY START
IAC SE
TELNET RCVD DONT TERMINAL-TYPE
TELNET RCVD SB NEW-ENVIRONMENT SEND IAC SE
TELNET RCVD DONT COM-PORT-CONTROL
Negotiations..............................
*************************
The Telnet server is not sending required responses.
?Telnet waiting for WILL AUTHENTICATION subnegotiation
You can continue to wait or you can cancel with Ctrl-C.
In case the Telnet server never responds as required,
you can try connecting to this host with TELNET /NOWAIT.
Use SET HINTS OFF to suppress further hints.
*************************
...
/etc/iksd.conf
set auth ssl rsa-cert-file /root/HomeWIP/pki/cmscert.pem #
points to host cert?
set auth ssl rsa-key-file /root/HomeWIP/pki/cms.jms.lucascargo.com.pem
# points to host key?
set auth ssl verify-dir /usr/local/ca # pem
is hashed
set auth ssl verify-file /usr/local/ca/cacert.pem
set telopt start-tls refused # just
SSL
script
#!/usr/local/bin/kermit +
set debug on
set debug session
set auth ssl debug on
set auth ssl rsa-cert-file w.pem ;personal cert pem
set auth ssl rsa-key-file work_priv.pem ;personal key pem
set auth ssl verbose on
set auth ssl verify-dir /usr/local/ca ;CA directory
set auth ssl verify-file /usr/local/ca/cacert.pem ;CA cert pem
set login userid <userid>
set telnet auth type ssl ;just SSL
I've tried sb-implies-will-do on/off on both client and server
sides with no luck.
TIA,
cs